home *** CD-ROM | disk | FTP | other *** search
- #
- # Zustands-▄berwachungs-Script
- # State Watch Script
- #
- # FIGHTER
- #
- # created: 15-Jun-2000 Bernd
- #
- # (C) COPYRIGHT 2000 RADONLABS GMBH
- #
-
- proc fighterwatch_normal {} {
-
- if {[.iskilled] == "true"} {
- .announcestate explode
- } elseif {[.iscrashed] == "true"} {
- .announcestate explode
- } elseif {[.ishandcontrol] == "true"} {
- .announcestate handcontrol
- } elseif {[.hastarget] == "false"} {
- .announcestate waitsearch
- } elseif {[.hastarget] == "true"} {
- .announcestate goto
- }
- }
-
- proc fighterwatch_handcontrol {} {
-
- # evtl auf normal zurueck
- if {[.iskilled] == "true"} {
- if {"distancechecker" == [.getreasonofdeath]} {
- .announcestate distancedeath
- } else {
- .announcestate explode
- }
- } elseif {[.iscrashed] == "true"} {
- .announcestate explode
- } elseif {[.ishandcontrol] == "false"} {
- .announcestate normal
- } elseif {[.isturbomove] == "true"} {
- .announcestate handcontrolturbo
- }
- }
-
- proc fighterwatch_handcontrolturbo {} {
-
- # evtl auf normal zurueck
- if {[.iskilled] == "true"} {
- .announcestate explode
- } elseif {[.iscrashed] == "true"} {
- .announcestate explode
- } elseif {[.ishandcontrol] == "false"} {
- .announcestate normal
- } elseif {[.isstatetimeover] == "true"} {
- .announcestate handcontrol
- }
- }
-
- # Nicht rekursiv, weil dies sich schon an einem Hindernis aufschaukeln
- # wuerde. Wenn Liste zu Ende zurueck. AvoidCollision nur machen, wenn
- # Aktion nicht gestoert wird!
- proc fighterwatch_avoidcollision {} {
-
- # evtl auf normal zurueck
- if {[.iskilled] == "true"} {
- .announcestate explode
- } elseif {[.iscrashed] == "true"} {
- .announcestate explode
- } elseif {[.ishandcontrol] == "true"} {
- .announcestate handcontrol
- } elseif { ([.iscommandlistfinished] == "true") && ([.isfirstframe] == "false")} {
- .popstate
- }
- }
-
- proc fighterwatch_waitsearch {} {
-
- if {[.iskilled] == "true"} {
- .announcestate explode
- } elseif {[.iscrashed] == "true"} {
- .announcestate explode
- } elseif {[.ishandcontrol] == "true"} {
- .announcestate handcontrol
- } elseif {[.hastarget] == "true"} {
- .announcestate goto
- } elseif {[.getavoidcollisionkind] != "nothing"} {
- .pushstate
- .announcestate avoidcollision
- } else {
-
- # Zielsuche
- set tgt [.searchtarget]
- if {$tgt == "null"} {
-
- # Rueckkehr, egal ob Fuehrer oder nicht.
- if {"null" != [.getgarage]} {
- .setgaragetarget
- .announcestate goto
- }
- } else {
-
- .setvehicletarget $tgt 300 true
- .announcestate goto
- }
- }
- }
-
- # Sollte es ein lure-target sein, schalten wir in einen separaten Zustand
- proc fighterwatch_goto {} {
-
- set ttype [lindex [.gettarget] 0]
- if {"vehicle" == $ttype} {
- set target [lindex [.gettarget] 1]
- } else {
- set target "null"
- }
-
- if {[.iskilled] == "true"} {
- .announcestate explode
- } elseif {[.iscrashed] == "true"} {
- .announcestate explode
- } elseif {[.ishandcontrol] == "true"} {
- .announcestate handcontrol
- } elseif {[.getavoidcollisionkind] != "nothing"} {
- # Vor Zielrelevanten Sachen machen! Wenn wir auf unsere garage
- # zufliegen, dann wird kein Ausweichen gemeldet (das weiis das avoidmodul)
- .pushstate
- .announcestate avoidcollision
- } elseif {[.hastarget] == "false"} {
- .announcestate waitsearch
- } elseif {[.reachedtarget] == "true"} {
-
- # at garage?
- if {([.getgarage] == $target) && ("null" != [.getgarage])} {
- .announcestate approachgarage
- }
-
- # break off formation, give free members my target
- .givetargettomembers false
- } elseif {[.isturbomove] == "true"} {
- .announcestate gototurbo
- }
- }
-
- # Nur fliegen und zurueckschalten
- proc fighterwatch_gototurbo {} {
-
- if {[.iskilled] == "true"} {
- .announcestate explode
- } elseif {[.iscrashed] == "true"} {
- .announcestate explode
- } elseif {[.ishandcontrol] == "true"} {
- .announcestate handcontrol
- } elseif {[.getavoidcollisionkind] != "nothing"} {
- # ??? Hier auch ???
- .pushstate
- .announcestate avoidcollision
- } elseif {[.isturbomove] == "false"} {
- .announcestate goto
- }
- }
-
- proc fighterwatch_explode {} {
-
- # Nach Animation wegnehmen
- if {[.isanimfinished] == "true"} {
- .setremoveable true
- }
- }
-
- proc fighterwatch_distancedeath {} {
-
- # Nach Animation wegnehmen
- if {[.isanimfinished] == "true"} {
- .setremoveable true
- }
- }
-
- proc fighterwatch_sleep {} {
-
- set garage [.getgarage]
-
- # Ziel weckt auf, sonst nix
- if {[.iskilled] == "true"} {
- .announcestate explode
- } elseif {[.hastarget] == "true"} {
- .announcestate leavegarage
- } elseif {[$garage.getsleepmode] == "true"} {
- .announcestate offline
- } else {
-
- # Wir duerfen aber auch selbst welche suchen...
- # Hervorlocken lassen sie sich aber nur durch Vehicle (???)
- if { [.isreplenished] == "true" } {
- set tgt [.searchtarget]
- if {$tgt != "null"} {
-
- .setvehicletarget $tgt 300 true
- .announcestate leavegarage
- }
- }
- }
- }
-
- proc fighterwatch_offline {} {
-
- set garage [.getgarage]
-
- # Ziel weckt auf, sonst nix
- if {[.iskilled] == "true"} {
- .announcestate explode
- } elseif {[$garage.getsleepmode] == "false"} {
- .announcestate sleep
- }
- }
-
- proc fighterwatch_leavegarage {} {
-
- # Wenn die Garage mit der Animation fertig ist, schaltet sie
- # uns direkt nach Goto. Wir muessen nix machen. Wenn wir selbst
- # auf visible reagieren wuerden, koennten wir das erst im naechsten
- # Frame und waeren so fuer einen Frame unsichtbar!
- if {[.iskilled] == "true"} {
- .announcestate explode
- }
- }
-
- proc fighterwatch_approachgarage {} {
-
- if {[.iskilled] == "true"} {
- .announcestate explode
- } elseif {[.ishandcontrol] == "true"} {
- .announcestate handcontrol
- } elseif {[.reachedtarget] == "true"} {
- .announcestate entergarage
- }
- }
-
- proc fighterwatch_entergarage {} {
-
- set garage [.getgarage]
-
- # Die Garage weiss, wann die Animation fertig ist.
- # sie schaltet bei mir das insidegarage-Flag
- if {[.iskilled] == "true"} {
- .announcestate explode
- } elseif {[.isinsidegarage] == "true"} {
- if {[$garage.getsleepmode] == "true"} {
- .announcestate offline
- } else {
- .announcestate sleep
- }
- }
- }
-
- proc fighterwatch_cinematic {} {
-
- # Nach Animation wegnehmen
- if {[.iscinematicfinished] == "true"} {
- .announcestate normal
- }
- }
-
- # ============================================================================
-
- proc fighter_addtogarage {} {
-
- # in sleep mode we must be in coordinate system of garage (in order to movr
- # if island moves)!
- set garage [.getgarage]
- if {"null" != $garage} {
- $garage.addchildvehicle [psel]
- } else {
- puts "BUG (addtogarage): [psel] has no garage!"
- }
- }
-
- proc fighter_removefromgarage {} {
-
- # remove object from garage after output animation
- set garage [.getgarage]
- if {"null" != $garage} {
- $garage.removechildvehicle [psel]
- } else {
- puts "BUG (removefromgarage): [psel] has no garage!"
- }
- # shall we connect the viewer to us?
- if {[.getviewergrab] == "true"} {
- if {$garage == [/world.getviewercarrier]} {
- /world.setviewercarrier [psel]
- /world.sethandcontrol [psel]
- }
- .setviewergrab "false"
- }
- }
-
-
-